home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue62
/
WStrings
/
widereg.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2000-08-10
|
368 b
|
20 lines
unit WideReg;
interface
// Register the TWideLabel component and WideString property editor.
procedure Register;
implementation
uses Classes, DsgnIntf, WideLabel, WideProp;
procedure Register;
begin
RegisterPropertyEditor(TypeInfo(WideString), TPersistent, '', TWideStringProperty);
RegisterComponents('Tempest', [TWideLabel]);
end;
end.